home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue35
/
clinic
/
MDIMenus.dpr
< prev
next >
Wrap
Text File
|
1998-01-18
|
291b
|
18 lines
program MDIMenus;
uses
Forms,
MainU in 'MainU.pas' {Form1},
ChildU in 'ChildU.pas' {Form2};
{$R *.RES}
begin
{$ifdef Win32}
Application.Initialize;
{$endif}
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.Run;
end.